Files correlati : tc1.exe Ricompilazione Demo : [ ] Commento Aggiornamenti all invio a zucchetti (nuove tabelle) git-svn-id: svn://10.65.10.50/trunk@19155 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			24 lines
		
	
	
		
			458 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			458 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
#include <xvt.h>
 | 
						|
 | 
						|
#include "tc1.h"
 | 
						|
 | 
						|
int main(int argc, char** argv)
 | 
						|
{
 | 
						|
  const int op = argc < 2 ? 0 : argv[1][1]-'0';
 | 
						|
  switch (op)
 | 
						|
  {
 | 
						|
		case	7: tc1800(argc,argv); break;	// riclassificazione conti zucchetti
 | 
						|
		case	6: tc1700(argc,argv); break;	// riclassificazione tabelle
 | 
						|
		case	1: tc1200(argc,argv); break;	// Tabelle
 | 
						|
		case	0: tc1100(argc,argv); break;	// trasferimento zucchetti
 | 
						|
    default: tc1100(argc,argv); break;
 | 
						|
  }
 | 
						|
  exit(0);
 | 
						|
  return 0; 
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 |