Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main()
- {
- int n,i,j;
- printf("Introdu un numar de maxim doua cifre:");
- scanf("%d",&n);
- if(n<=99)
- {
- for(i=1;i<=n;i++)
- {
- for(j=1;j<=i;j++)
- printf("%d",j);
- printf("\n");
- }
- }
- else
- printf("Esti prost citeste mai bine!!!!!!!!!!");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment