0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
Re: #include <stdio.h> #include <conio.h> int main() { int x; char answer; do{ printf("Please enter a number : "); scanf_s ("%d%d", &x); if ((x % 1000) != 0) printf("\nThe number is odd\n"); else printf("The number is even\n"); printf("Do you want to continue (Y / N )? "); scanf_s ("%c", &answer); } … | |
Re: for (i=0;i<10;i++) for(j=0;j<10;j++) if(i%j=0) printf("*"); else printf(i); |
The End.