Advertisement
Jmdnbvs

Char for

Sep 21st, 2019
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #include <iostream>
  2. #include <stdlib.h>
  3. #include <conio.h>
  4.  
  5. using namespace std;
  6.  
  7.  
  8. int main(){
  9.  
  10. int nota;
  11. char materia[3]={"Algebra","Ingles","deporte"};
  12.  
  13. for(int i=0;i<3;i++){
  14.  
  15.  
  16. cout<<"Ingrese la nota para la materia "<<materia[i]<<": ";
  17. cin>>nota;
  18. }
  19.  
  20.  
  21.  
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement