Home C 25. Mickey mouse 25. Mickey mouse / July 27, 2017 Code: #include<stdio.h> int main(){ int n; printf("Enter the Balloon's number:\n"); scanf("%d",&n); if((n%3==0)&&(n%7==0)) printf("This balloon can fly to miney."); else printf("This balloon cannot fly to miney."); return 0; } You Might Also Like Write a program that calculate the sum of the ff. quantities. In each case, N indicates a quantity specified by user. A. 1+½+⅓+¼...+¹/N=_____ B. 1²+2²+3²+... N²=______October 06, 2017Single number as a command line argumentOctober 02, 2017How to swap two numbers by using function September 29, 2017 Post a Comment
No comments