Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "stdio.h"
- #include "stdlib.h"
- main() {
- int num1, num2, total = 0;
- printf("Entre com o numero 1: ");
- scanf("%d", &num1);
- printf("Entre com o numero 2: ");
- scanf("%d", &num2);
- total = num1+num2;
- /* usando if */
- /* ele testa ate encontrar o valor */
- printf("\nUSANDO IF");
- if (total==1) {
- printf("\nTotal: %d\n", total);
- }
- else {
- if (total==2) {
- printf("\nTotal: %d\n", total);
- }
- else {
- if (total==3) {
- printf("\nTotal: %d\n", total);
- }
- else {
- if (total==4) {
- printf("\nTotal: %d\n", total);
- }
- else {
- printf("\nTotal: %d\n", total);
- }
- }
- }
- }
- /* usando switch case */
- /* ele vai direto no resultado. nao faz testes */
- printf("\nUSANDO SWITH CASE");
- switch (total) {
- case 1:
- printf("\nTotal: %d", total);
- break;
- case 2:
- printf("\nTotal: %d", total);
- break;
- case 3:
- printf("\nTotal: %d", total);
- break;
- case 4:
- printf("\nTotal: %d", total);
- break;
- case 5:
- printf("\nTotal: %d", total);
- break;
- }
- #ifdef __WIN32__
- system("pause");
- #endif // __WIN32__
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement